home *** CD-ROM | disk | FTP | other *** search
- # File: makefile
- # SGoldthorpe 20-Jul-91
-
- # makefile for midiplay
-
- # USUAL COMPILER STUFF
- CC = cc
- LINK = link
- CCFLAGS = -c -Depend !depend -IC:
-
-
- # libraries:
- LIB=C:o.stubs C:o.Risc_OsLib
-
-
- OBJS = mp_main.o mp_intp.o mp_gbls.o
-
-
-
- default: midiplay
-
-
- midiplay: $(OBJS)
- $(LINK) -o midiplay $(OBJS) $(LIB)
-
-
- .c.o:
- cc $(CCflags) $*
-
- .s.o:
- objasm -from s.$* -to o.$* -quit
- stamp o.$*
-
- # Static dependencies:
-
- # Dynamic dependencies:
- o.mp_main: c.mp_main
- o.mp_main: h.mp_gbls
- o.mp_main: h.midiplay
- o.mp_intp: c.mp_intp
- o.mp_intp: C:h.kernel
- o.mp_intp: C:h.bbc
- o.mp_intp: C:h.os
- o.mp_intp: h.mp_gbls
- o.mp_intp: h.midiplay
-